﻿
#home-contenido {
    height: auto;
    border-radius: 10px;
    background-color: white !important;
    padding: 2rem;
    height: auto;
}

#contenido {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.card-body-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 10px;
}

    .card-body-wrapper img {
        width: 100%;
        height: 180px; /* alto fijo */
        object-fit: cover; /* mantiene proporción recortando lo que sobra */
        border-radius: 6px;
    }


/* Modal pantalla completa */
#modalImagen {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
}

    #modalImagen img {
        max-width: 90%;
        max-height: 90%;
    }

    #modalImagen span {
        position: absolute;
        top: 20px;
        right: 40px;
        color: white;
        font-size: 40px;
        cursor: pointer;
    }

.card-body-wrapper img {
    cursor: pointer; /* Indica que es clickeable */
}